home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / optypes.sql < prev    next >
Text File  |  2000-05-12  |  790b  |  21 lines

  1. /* RCSVER $Id: optypes.sql,v 1.3 1999-03-19 09:49:32-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        optypes.sql
  6. * Date:        02/17/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the optypes table. This table contains the 
  9. *        operator types (bus driver, rev. serv. technician, etc.)
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE optypes
  13. (
  14.     op_type        NUMBER(38),    /* Type of operator */
  15.     op_description    VARCHAR2(30),    /* Description of operator */
  16.     subsys_id    NUMBER(38)
  17.         CONSTRAINT ref1_optypes REFERENCES subsystems(id)
  18.         ON DELETE CASCADE,
  19.     CONSTRAINT pk_optypes PRIMARY KEY (op_type)
  20. );
  21.